From 2603011ea06b657dfafc3b1f81b3a929e84b1281 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 18 Apr 2016 14:38:12 -0400 Subject: [PATCH] Fix a typo We don't want to parse a weight twice, but a weight and a stretch. --- gtk/gtkcssshorthandpropertyimpl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkcssshorthandpropertyimpl.c b/gtk/gtkcssshorthandpropertyimpl.c index 4886395ee8..bd60587277 100644 --- a/gtk/gtkcssshorthandpropertyimpl.c +++ b/gtk/gtkcssshorthandpropertyimpl.c @@ -503,7 +503,7 @@ parse_font (GtkCssShorthandProperty *shorthand, if (values[4] == NULL) { - values[4] = _gtk_css_font_weight_value_try_parse (parser); + values[4] = _gtk_css_font_stretch_value_try_parse (parser); parsed_one = parsed_one || values[4] != NULL; } } -- 2.30.2